home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #11
/
Amiga Plus CD - 2002 - No. 11.iso
/
Tools
/
Development
/
PowerD
/
powerd
/
source
/
lib
/
powerd_lib.lha
/
PowerD_PPC
/
WaitIMessage.d
< prev
next >
Wrap
Text File
|
2001-03-26
|
377b
|
19 lines
OPT PPC,NOEXE,NOSTD
MODULE 'intuition/intuition'
PROC WaitIMessage(win:PTR TO Window)(L,L,L,L)
DEF port,msg:PTR TO IntuiMessage,class,code,qual,iaddr
port:=win.UserPort
IFN msg:=GetMsg(port)
REPEAT
WaitPort(port)
UNTIL msg:=GetMsg(port)
ENDIF
class:=msg.Class
code:=msg.Code
qual:=msg.Qualifier
iaddr:=msg.IAddress
ReplyMsg(msg)
ENDPROC class,code,qual,iaddr